home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000254_jaltman@watsun.cc.columbia.edu_Wed Jul 31 17:59:18 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  57 lines

  1. Article: 13569 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: SSL/TLS Scripting Question
  6. Date: 31 Jul 2002 21:54:49 GMT
  7. Organization: Columbia University
  8. Lines: 40
  9. Message-ID: <ai9mb9$skk$1@newsmaster.cc.columbia.edu>
  10. References: <oSX19.36380$vB3.2034280@twister.souCERTtheast.rr.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1028152489 29332 128.59.39.2 (31 Jul 2002 21:54:49 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 31 Jul 2002 21:54:49 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13569
  16.  
  17. SET AUTH TLS VERIFY NO
  18.  
  19. or 
  20.  
  21. SET AUTH TLS CERTS-OK YES
  22.  
  23. However, the appropriate thing to do is place the Root Certificate
  24. that was used to sign the host's cert into your ca_certs.pem file;
  25. or load it into Kermit with
  26.  
  27.   SET AUTH TLS VERIFY-FILE filename
  28.  
  29. In article <oSX19.36380$vB3.2034280@twister.southeast.rr.com>,
  30. Eric Almond <eric672@carolina.rr.comTRASH> wrote:
  31. : I'm scripting out a Secure FTP session using SSL/TLS and I'm getting the
  32. : following messages that's causing the script to pause for user input:
  33. : Warning: Server has a self-signed certificate
  34. : Continue? (Y/N)
  35. : Warning: Hostname ("ftp.xxxxxx.com") does not match server's certificate
  36. : ("xxxxxx")
  37. : Continue? (Y/N)
  38. : Is there a way to automatically accept these "Warnings"?  I know the server
  39. : is valid and I'm not concerned about these messages.  I looked in the
  40. : documentation but can't find anything specifically talking about these
  41. : messages.  I need this script to be automated and with no user intervention.
  42. : Thanks in Advance!
  43. : Eric
  44.  
  45.  
  46.  Jeffrey Altman * Sr.Software Designer     Kermit 95 2.0 GUI available now!!!
  47.  The Kermit Project @ Columbia University  SSH, Secure Telnet, Secure FTP, HTTP
  48.  http://www.kermit-project.org/            Secured with MIT Kerberos, SRP, and 
  49.  kermit-support@columbia.edu               OpenSSL.
  50.